home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / dev / gcc / ixemul_src.lha / ixemul-41.0 / library / ixconfig.c < prev    next >
C/C++ Source or Header  |  1995-05-17  |  6KB  |  199 lines

  1. /*
  2.  *  This file is part of ixemul.library for the Amiga.
  3.  *  Copyright (C) 1991, 1992  Markus M. Wild
  4.  *
  5.  *  This library is free software; you can redistribute it and/or
  6.  *  modify it under the terms of the GNU Library General Public
  7.  *  License as published by the Free Software Foundation; either
  8.  *  version 2 of the License, or (at your option) any later version.
  9.  *
  10.  *  This library is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  13.  *  Library General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU Library General Public
  16.  *  License along with this library; if not, write to the Free
  17.  *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19.  
  20. /* NOT (!) to be used by custom applications, this is a very special case !! */
  21. #include "ixemul.h"
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <unistd.h>
  25. #include <string.h>
  26.  
  27. extern struct ixemul_base *ixemulbase;
  28.  
  29. int
  30. main (int argc, char *argv[])
  31. {
  32.   int c;
  33.   int do_dots = ixemulbase->ix_translate_dots;
  34.   int do_slash = ixemulbase->ix_translate_slash;
  35.   int mem_buf = ixemulbase->ix_membuf_limit;
  36.   int do_force = ixemulbase->ix_force_translation;
  37.   int do_links = ixemulbase->ix_translate_symlinks;
  38.   int do_sleep = 0;
  39.   int red_zone_size = ixemulbase->ix_red_zone_size;
  40.   int do_watch = ixemulbase->ix_watch_stack;
  41.   int fs_buf_factor = ixemulbase->ix_fs_buf_factor;
  42.   int ignore_global_env = ixemulbase->ix_ignore_global_env;
  43.   int no_ces_then_open_console = ixemulbase->ix_no_ces_then_open_console;
  44.   int unix_pattern_matching = ixemulbase->ix_unix_pattern_matching;
  45.   int unix_pattern_matching_case_sensitive = ixemulbase->ix_unix_pattern_matching_case_sensitive;
  46.   int no_insert_disk_requester = ixemulbase->ix_no_insert_disk_requester;
  47.  
  48.   while ((c = getopt (argc, argv, "./?ab:cdefhilm:pPr:svwx")) != EOF)
  49.     switch (c)
  50.       {
  51.       case 'd':      
  52.         mem_buf = 0;
  53.         /* fall into */
  54.  
  55.       case 'a':
  56.         do_dots =
  57.           do_slash = 
  58.             do_force = 
  59.           do_links = 0;
  60.         break;
  61.  
  62.       case 'b':
  63.         fs_buf_factor = atoi (optarg);
  64.         if (! fs_buf_factor)
  65.           fs_buf_factor = 64;
  66.         break;
  67.  
  68.       case 'c':
  69.         no_ces_then_open_console = 1;
  70.         break;
  71.  
  72.       case 'v':
  73.         no_insert_disk_requester = 1;
  74.         break;
  75.       
  76.       case 'p':
  77.         unix_pattern_matching = 1;
  78.         unix_pattern_matching_case_sensitive = 0;
  79.         break;
  80.       
  81.       case 'P':
  82.         unix_pattern_matching = 1;
  83.         unix_pattern_matching_case_sensitive = 1;
  84.         break;
  85.       
  86.       case '.':
  87.           do_dots = 1;
  88.           break;
  89.           
  90.       case '/':
  91.         do_slash = 1;
  92.         break;
  93.         
  94.       case 'f':
  95.         do_force = 1;
  96.         break;
  97.  
  98.       case 'i':
  99.         ignore_global_env = 1;
  100.         break;
  101.  
  102.       case 'e':
  103.         ignore_global_env = 0;
  104.         break;
  105.  
  106.       case 'l':
  107.     do_links = 1;
  108.     break;
  109.  
  110.       case 'm':
  111.         mem_buf = atoi (optarg);
  112.     break;
  113.  
  114.       case 'r':
  115.     red_zone_size = atoi (optarg);
  116.     break;
  117.  
  118.       case 's':
  119.         do_sleep = 1;
  120.         break;
  121.  
  122.       case 'w':
  123.     do_watch = 1;
  124.     break;
  125.  
  126.       case 'x':
  127.           do_watch = 0;
  128.           break;
  129.  
  130.       default:
  131.     fprintf (stderr, "%s [-d|-a|-c|-p|-P|-b N|-f|-i|-e|-.|-/|-l|-m N|-r N|-s|-w|-x]\n", argv[0]);
  132.     fprintf (stderr, "  -d   reset values to defaults\n"
  133.              "  -a   full AmigaDOS mode, no ./ translations\n"
  134.              "  -c   open console if no errorstream was provided\n"
  135.              "  -p   use UNIX-style filename pattern-matching\n"
  136.              "  -P   use case-sensitive UNIX-style filename pattern-matching\n"
  137.              "  -b N N physical block map into 1 logical (stdio) block\n"
  138.              "  -f   don't accept AmigaDOS notation\n"
  139.              "  -i   ignore global environment (ENV:)\n"
  140.              "  -e   don't ignore global environment (ENV:)\n"
  141.              "  -.   translate . and ..\n"
  142.              "  -/   translate /foo -> foo: and a//b -> a/b\n"
  143.              "  -l   translate contents of symbolic links\n"
  144.              "  -m N files upto N bytes are cached in memory\n"
  145.              "  -r N set red zone size to N bytes. 0 disables.\n"
  146.              "  -s   sleep, don't return.\n"
  147.              "  -v   suppress the \"Insert volume in drive\" requester\n"
  148.              "  -w   enable stack watcher\n"
  149.              "  -x   disable stack watcher\n");
  150.     exit (1);
  151.       }
  152.  
  153.   ixemulbase->ix_translate_dots = do_dots;
  154.   ixemulbase->ix_translate_slash = do_slash;
  155.   ixemulbase->ix_translate_symlinks = do_links;
  156.   ixemulbase->ix_force_translation = do_force;
  157.   ixemulbase->ix_membuf_limit = mem_buf;
  158.   ixemulbase->ix_red_zone_size = red_zone_size;
  159.   ixemulbase->ix_watch_stack = do_watch;
  160.   ixemulbase->ix_fs_buf_factor = fs_buf_factor;
  161.   ixemulbase->ix_ignore_global_env = ignore_global_env;
  162.   ixemulbase->ix_no_ces_then_open_console = no_ces_then_open_console;
  163.   ixemulbase->ix_unix_pattern_matching = unix_pattern_matching;
  164.   ixemulbase->ix_unix_pattern_matching_case_sensitive = unix_pattern_matching_case_sensitive;
  165.   ixemulbase->ix_no_insert_disk_requester = no_insert_disk_requester;
  166.   
  167.   printf ("%sranslate . and .., %stranslate /, %stranslate symlinks,\n"
  168.       "%sallow AmigaDOS notation, membuf size = %d,\n"
  169.       "red zone size = %d, stack watcher is %s %s,\n"
  170.       "%d physical blocks build%s one logical block (for stdio),\n"
  171.       "%signore global environment (ENV:),\n"
  172.       "%sse UNIX-style pattern-matching (case-%ssensitive),\n"
  173.       "%ssuppress the \"Insert volume in drive\" requester,\n"
  174.           "%sopen console if no errorstream was provided.\n",
  175.           do_dots ? "T" : "Don't t",
  176.           do_slash ? "" : "don't ",
  177.           do_links ? "" : "don't ",
  178.           do_force ? "don't " : "",
  179.           mem_buf,
  180.       red_zone_size,
  181.       do_watch ? "enabled" : "disabled",
  182.       red_zone_size ? (do_watch ? "(and active)" : "(and not active)")
  183.             : (do_watch ? "(but not active)" : "(and not active)"),
  184.       fs_buf_factor, fs_buf_factor == 1 ? "s" : "",
  185.       ignore_global_env ? "" : "don't ",
  186.       unix_pattern_matching ? "u" : "don't u",
  187.       unix_pattern_matching_case_sensitive ? "" : "in",
  188.       no_insert_disk_requester ? "" : "do not ",
  189.           no_ces_then_open_console ? "" : "don't ");
  190.  
  191.   /* if -s is specified, the program keeps the library open until it is 
  192.      interrupted. That way, the library can't be flushed, so the preferences
  193.      are not reset */
  194.   if (do_sleep)
  195.     pause ();
  196.  
  197.   return 0;
  198. }
  199.